home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------
- //
- // Fleet.wfm -- The Fleet form
- //
- // This form contains the primary MenuBar and Toolbar for
- // the Fleet application. The form contains no controls.
- //
- // Dependencies: FLEET.MNU
- // FLEET.ICO
- //
- // Visual dBASE Samples Group
- //
- // $Revision: 1.4 $
- //
- // Copyright (c) 1997, Borland International, Inc.
- // All rights reserved.
- //
- SET TALK OFF
- ** END HEADER -- do not remove this line
- //
- // Generated on 09/22/97
- //
- parameter bModal
- local f
- f = new fleetForm()
- if (bModal)
- f.mdi = false // ensure not MDI
- f.readModal()
- else
- f.open()
- endif
-
- class fleetForm of FORM
- with (this)
- onClose = class::FORM_ONCLOSE
- scaleFontSize = 8
- scaleFontBold = false
- height = 1.4737
- left = 10
- top = 2
- width = 50
- text = "Fleet Manager"
- mdi = false
- sizeable = false
- menuFile = "FLEET.MNU"
- maximize = false
- icon = "filename Fleet.ico"
- endwith
-
-
- // {Linked Method} form.onClose
- function form_onClose
- if ( TYPE("this.app") == "O" )
- return ( this.app.close() )
- endif
- return false
- endclass
-